文字方向 - 垂直/水平 文字書寫


Posted by hoyi-23 on 2021-06-12

CSS3 文字預設為水平書寫,若遇到需要垂直排版,或改變書寫方向(預設為由左至右)。
我們可以透過 writing-mode 設定:

writing-mode

writing-mode 的值有5種:

  1. writing-mode: horizontal-tb (水平書寫由左至右)
  2. writing-mode: vertical-rl (垂直書寫由右至左)
  3. writing-mode: vertical-lr(垂直書寫由左至右)

text-orientation 讓文字轉向

(僅搭配vertical-mode使用)

  1. text-orientation: mixed; 預設值
  2. text-orientation: upright;
  3. text-orientation: sideways-right;
  4. text-orientation: sideways;
  5. text-orientation: use-glyph-orientation;
  6. text-orientation: inherit;
  7. text-orientation: initial;
  8. text-orientation: unset;

CodePen 範例


#文字垂直書寫







Related Posts

[Excel] 顯示所有隱藏欄位

[Excel] 顯示所有隱藏欄位

【Day03】註冊免費 DNS

【Day03】註冊免費 DNS

[Python] 好用的 concurrent.futures is a good way to speed up your function

[Python] 好用的 concurrent.futures is a good way to speed up your function


Comments